Description:

Performs the specified action on each element of the List.

Syntax:
public void ForEach(
Action<T> action
)
Parameters:
  • action
  • Type: Action<T>
  • The Action(T) delegate to perform on each element of the List.
Returns:
Type: void

Nothing found